Jump to content
  • 0

отцентрировать сайт


mishutko
 Share

Question

Верстаю свой первый сайт и возникла проблема, сайт загружается не по центру. Ширина сайта - width: 1680px, загружается область левого верхнего угла.

зы. margin: 0 auto; куда только не лепил, не помогло)))

Помогите разобраться плз.

Edited by mishutko
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

извеняюсь, я имел введу margin.

И еще немного помогите с яваскриптом)

Есть 4 блока, у каждого свой id -допустим k1, k2, k3, k4.

И так же есть 4 кнопки(типа меню=)). При нажатии на кнопку, 3 блока должны быть display: none; а один display: block;

К чему это я все, допустим загружается страница - изначально display: block; на блоке "О компании" все остальные 3 display: none; Нажимаю кнопку и на его месте появляется другой блок, а этот исчезает. Надеюсь я вас не запутал)

Пока я осуществил работу только 2х кнопок, но таким методом все 4 вряд ли получиться.

<ul id="kn2">
<li><a href="#" title="О компании" onclick="document.getElementById('okom').style.display='block'" onfocus="document.getElementById('stat').style.display='none'">О компании</a></li>

</ul>
<ul id="kn3">
<li><a href="#" title="Статьи"onclick="document.getElementById('stat').style.display='block'" onfocus="document.getElementById('okom').style.display='none'">Статьи</a></li>
</ul>

Edited by mishutko
Link to comment
Share on other sites

  • 0

<button onclick="show(1)">k1</button>

function show(num)
{
for (i=1; i<=4; i++) document.getElementById('k'+i).style.display='none';
document.getElementById('k'+num).style.display='block';
}

//В слове "получиться" ударение падает на и. Ты действительно хотел написать именно это слово?

Link to comment
Share on other sites

  • 0

Делай одну функцию обработки нажатия на ссылки. Например в jQuery как-то так:


$('.button').click(function() {
$('.text-block').hide();
var text_block_id = $(this).attr('rel');
$('#'+text_block_id).show();
});

Сперва прячем все элементы с классом "text-block". Потом получаем id нужного текстового блока из атрибута rel кнопки. Затем показываем этот блок. HTML будет примерно таким:

<input type="button" class="button" rel="block1"/>
<input type="button" class="button" rel="block2"/>
<input type="button" class="button" rel="block3"/>
<div id="block1" class="text-block">text</div>
<div id="block2" class="text-block">text</div>
<div id="block3" class="text-block">text</div>

Похожая фигня сделана на моей визитке, например.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy